home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1997 February: Technology Seed / Mac Tech Seed Feb '97.toast / OpenDoc 1.2b2c1 / Implementation / Core / CoreInit.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  1997-02-13  |  923 b   |  42 lines  |  [TEXT/MPS ]

  1. /*
  2.     File:        CoreInit.cp
  3.  
  4.     Contains:    Init routines for the Core library
  5.  
  6.     Owned by:    Nick Pilch
  7.  
  8.     Copyright:    © 1994 by Apple Computer, Inc., all rights reserved.
  9.  
  10.     Change History (most recent first):
  11.  
  12.          <8>     1/12/95    jpa        Don't use obsolete Toolbox names [1211211].
  13.                                     Don't export cfm init [1210936].
  14.          <7>     9/29/94    RA        1189812: Mods for 68K build.
  15.          <6>     8/19/94    NP        1181622: Ownership fix.
  16.          <5>     6/30/94    jpa        Added InitLibraryResources call.
  17.          <4>     6/23/94    NP        Clean up.
  18.          <3>     6/22/94    NP        Fixed init routine.
  19.          <2>     6/22/94    NP        Removed SOMInitModule, added CoreCFMInit.
  20.          <1>      5/5/94    NP        first checked in
  21.  
  22.     To Do:
  23.     In Progress:
  24. */
  25.  
  26. #ifndef __USERSRCM__
  27. #include "UseRsrcM.h"
  28. #endif
  29.  
  30. #ifndef __CODEFRAGMENTS__
  31. #include <CodeFragments.h>
  32. #endif
  33.  
  34.  
  35. extern "C" pascal OSErr CoreCFMInit( CFragInitBlockPtr );
  36.  
  37.  
  38. pascal OSErr CoreCFMInit (CFragInitBlockPtr initBlkPtr)
  39. {
  40.     return InitLibraryResources(initBlkPtr);
  41. }
  42.